home *** CD-ROM | disk | FTP | other *** search
/ Acorn Collectors / Acorn Collectors CD 1.iso / acorn / ftp / docs / ACORNUSR / 1989 / SEP89 < prev   
Encoding:
Text File  |  1995-02-24  |  3.2 KB  |  62 lines

  1. * With the release of RISC OS comes a new 6502 emulator called !65Host. This
  2. application substantially emulates a BBC model B microcomputer running OS
  3. 1.2. It supports direct screen accesses, paged sideways ROMs and direct
  4. accesses to some hardware. As a result, the Customer Support department
  5. would like your help in compiling lists of software that work under this
  6. emulator, the 65Arthur Tube emulator and the PC emulator. If you know of any
  7. packages which run under these emulators, please write in, stating which
  8. version of the package you have used, what problems you have encountered,
  9. which emulator (and version of emulator) and which computer you are using.
  10.  
  11.  
  12. * In the Master Compact there is a chip called the EEPROM (Electrically
  13. Erasable Programmable Read-Only Memory), this chip does almost the same job
  14. as the CMOS RAM and battery backup in the Master 128. This chip basically
  15. holds the configuration settings used in the Master Compact. The chip has a
  16. limited life of about 10,000 writes to it before it needs replacing. This
  17. may seem like quite a lot, but there are a number of software packages which
  18. use the EEPROM to store values when they are running, or  to store
  19. configuration values for when the software isĀ used at a later date. If you
  20. begin to have problems with the configuration after  using the Master
  21. Compact for the period of 1 to 2 years this may well be the cause of the
  22. problem. New EEPROMs are available for a small cost from your local Acorn
  23. Dealer. This should be regarded in much the same way as replacing the
  24. battery in other Acorn Computers.
  25.  
  26. * It is possible to create your own boot sequence when starting up RISC OS.
  27. This will allow you to load in whichever applications you like when you
  28. first start the Desktop. An example of this is below.
  29.  
  30. Create a Text file using !Edit, and type in:
  31.  
  32.   Filer_OpenDir adfs::Disc.$
  33.   Run adfs::Disc.app1.!System.!Boot
  34.   Run adfs::Disc.app1.!Draw.!Boot
  35.   Run adfs::Disc.app1.!Paint.!Boot
  36.   Run adfs::Disc.app1.!Edit
  37.   Run adfs::Disc.app2.!Alarm
  38.   Run adfs::Disc.app2.!TinyDirs adfs::Disc.app2.!Magnifier
  39.  
  40. (The name Disc is assumed to be the name of your disc. Choose a different
  41. name if you prefer.) Save this as DeskTasks in your discs root directory.
  42.  
  43. Now add the following line to the very end of your !Boot file:
  44.   *Desktop -file adfs::Disc.DeskTasks
  45.  
  46. Now CTRL-RESET your machine. Your boot sequence will execute, there will be
  47. a short pause, and then you will enter the desktop with your Disc's root
  48. directory open, with !Edit, !Alarm and !TinyDirs running, and !Magnifier
  49. loaded into !TinyDirs.
  50.  
  51. What has happened is that the *desktop command has run each line of the
  52. DeskTasks file as a task within the window world. !System.!Boot must be run
  53. before !Edit is run: this is equivalent to !System being "seen" in a Filer
  54. directory viewer, and tells !Edit (and anyone else who needs to know) where
  55. system resources can be found.
  56.  
  57. Note that all applications are quoted with their full path-name, including
  58. filing system name and drive name or number. It's an important principle of
  59. operation in the desktop that, as far as possible, all objects are
  60. identified by a full path-name, and so access to them is unaffected by
  61. changes of current directory, drive, or filing system.
  62.